home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / StandardFile.idl < prev    next >
Text File  |  1996-05-01  |  3KB  |  93 lines

  1. /*
  2.      File:        StandardFile.idl
  3.  
  4.      Contains:    Standard File package Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __STANDARDFILE_IDL__
  19. #define __STANDARDFILE_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __TYPES_IDL__
  25. #include <Types.idl>
  26. #endif
  27. #ifndef __DIALOGS_IDL__
  28. #include <Dialogs.idl>
  29. #endif
  30. #ifndef __FILES_IDL__
  31. #include <Files.idl>
  32. #endif
  33.  
  34. #ifdef __SOMIDL__
  35.  
  36. #if FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
  37. /* The interfaces for other managers depend on these structs.*/
  38. typedef SOMLargeStruct            SFReply;                    /* Derived from a struct of 74 bytes in size */
  39.  
  40. typedef SOMLargeStruct            StandardFileReply;            /* Derived from a struct of 88 bytes in size */
  41.  
  42. #endif
  43. #if FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED
  44. /*
  45.  * Note to developers targeting for system versions later than System 7.x.
  46.  *
  47.  * After System 7.x, the routines in this file will become obsolete!
  48.  *
  49.  * For software targeted to later system versions, do not include this file.
  50.  * Instead, include Navigation and use its routines.  StandardFile routines will
  51.  * be implemented only for backward compatibility with System 7.x software.
  52.  *
  53. */
  54. /*
  55.  the refcon field of the dialog record during a
  56.  modalfilter or dialoghook contains one of the following 
  57. */
  58. /* for CustomXXXFile, ActivationOrderListPtr parameter is a pointer to an array of item numbers */
  59. typedef OpaquePtr                ActivationOrderListPtr;        /* Substituted OpaquePtr for ``short*'' */
  60.  
  61. typedef OpaquePtr DlgHookProcPtr;
  62. typedef OpaquePtr DlgHookUPP;
  63. typedef OpaquePtr FileFilterProcPtr;
  64. typedef OpaquePtr FileFilterUPP;
  65. /* the following also include an extra parameter of "your data pointer" */
  66. typedef OpaquePtr DlgHookYDProcPtr;
  67. typedef OpaquePtr DlgHookYDUPP;
  68. typedef OpaquePtr ModalFilterYDProcPtr;
  69. typedef OpaquePtr ModalFilterYDUPP;
  70. typedef OpaquePtr FileFilterYDProcPtr;
  71. typedef OpaquePtr FileFilterYDUPP;
  72. typedef OpaquePtr ActivateYDProcPtr;
  73. typedef OpaquePtr ActivateYDUPP;
  74. typedef OpaquePtr                SFTypeList;                    /* Substituted OpaquePtr for array of OSType of size 4 */
  75.  
  76. /*
  77.     The GetFile "typeList" parameter type has changed from "SFTypeList" to "ConstSFTypeListPtr".
  78.     For C, this will add "const" and make it an in-only parameter.
  79.     For Pascal, this will require client code to use the @ operator, but make it easier to specify long lists.
  80.  
  81.     ConstSFTypeListPtr is a pointer to an array of OSTypes.
  82. */
  83. typedef OpaquePtr                ConstSFTypeListPtr;            /* Substituted OpaquePtr for ``OSType*'' */
  84.  
  85. #if CGLUESUPPORTED
  86. #endif
  87. #endif
  88.  
  89. #endif /* __SOMIDL__ */
  90.  
  91. #endif /* __STANDARDFILE_IDL__ */
  92.  
  93.